home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Source Code / C++ / Applications / Muddweller 1.2 / source code / Main / NoTrace.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-02-11  |  392 b   |  25 lines  |  [TEXT/MPS ]

  1. /* NoTrace - Routines which must be compiled with -trace off                  */
  2.  
  3. #ifndef __NOTRACE__
  4. #define __NOTRACE__
  5.  
  6.  
  7.         // • MacApp
  8. #ifndef __UMemory__
  9. #include "UMemory.h"
  10. #endif
  11.  
  12.  
  13. const int kRsrvSize = 40000;
  14.  
  15. HandleListHandle gMyDocList;
  16. Boolean gPurgedHist, gMemIsLow;
  17. Handle gMemReserve, gMemReserve2;
  18.  
  19.  
  20. pascal long GrowZone (long needed);
  21.  
  22. pascal void InitNoTrace (void);
  23.  
  24. #endif
  25.